.hero {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 150px 20px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 88px;
    margin-bottom: 16px;
    font-weight: bold;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.hero p {
    font-size: 55px;
    opacity: 0.8;
    color: #fff;
}

.studio-content {
    display: flex;
    gap: 60px;
    padding: 0 100px;
    position: relative;
    min-height: 100vh;
}

.studio-images {
    position: sticky;
    top: 100px;
    height: fit-content;
    z-index: 2;
    flex: 1;
    max-width: 50%;
}

.image-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
    width: 100%;
}

.image-container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.image-container img:last-child {
    margin-bottom: 60px;
}

.overlap-image {
    margin-top: -40px;
}

.studio-text {
    position: sticky;
    top: 100px;
    height: calc(100vh - 200px);
    overflow-y: auto;
    flex: 1;
    max-width: 50%;
    padding-top: 100px;
    padding-right: 20px;
    padding-left: 20px;
    font-family: 'Roboto', monospace;
}

.studio-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #333;
    font-family: 'Roboto', monospace;
}

.studio-text .highlight {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 30px;
}

.studio-content .book-ride-btn {
    position: static;
    background-color: var(--secondary-color);
    color: var(--black);
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    display: inline-block;
    left: auto;
    bottom: auto;
}

.studio-content .book-ride-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    background-color: var(--primary-color);
}

/* Tablet and medium screen adjustments */
@media (max-width: 1024px) {
    .studio-content {
        gap: 40px;
        padding: 0 60px;
    }
    
    .studio-images {
        max-width: 45%;
    }
    
    .studio-text {
        max-width: 55%;
        padding-left: 15px;
    }
    
    .overlap-image {
        margin-top: -20px;
    }
}

@media (max-width: 900px) {
    .studio-content {
        gap: 30px;
        padding: 0 40px;
    }
    
    .studio-images {
        max-width: 100%;
    }
    
    .studio-text {
        max-width: 100%;
    }
    
    .overlap-image {
        margin-top: -15px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 60px 20px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero p {
        font-size: 28px;
    }
    
    .studio-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        min-height: auto;
    }
    
    .studio-images {
        position: static;
        top: auto;
        z-index: 1;
        max-width: 100%;
    }
    
    .image-container {
        max-width: 100%;
    }
    
    .image-container img {
        width: 100%;
    }
    
    .overlap-image {
        margin-top: -10px;
    }
    
    .studio-text {
        position: static;
        top: auto;
        height: auto;
        overflow-y: visible;
        max-width: 100%;
        padding-top: 0;
        padding-right: 0;
        padding-left: 0;
    }
    
    .studio-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .studio-text .highlight {
        font-size: 20px;
        margin-top: 30px;
    }
    
    .studio-content .book-ride-btn {
        margin-top: 20px;
        margin-bottom: 60px;
        width: 100%;
        text-align: center;
    }
}